【例子介绍】数字摄像机软件开发含代码
【相关图片】
【源码结构】.
.
├── SDK
│ ├── BCB
│ │ ├── Common
│ │ │ ├── HVDAILT.h
│ │ │ ├── HVDAILT.lib
│ │ │ ├── HVDef.h
│ │ │ ├── HVUtil.h
│ │ │ ├── HVUtil.lib
│ │ │ ├── Raw2Rgb.h
│ │ │ └── Raw2Rgb.lib
│ │ └── Sample
│ │ ├── HVRealtime
│ │ │ ├── Main.cpp
│ │ │ ├── Main.ddp
│ │ │ ├── Main.dfm
│ │ │ ├── Main.h
│ │ │ ├── PHVRealtime.bpr
│ │ │ ├── PHVRealtime.cpp
│ │ │ └── PHVRealtime.res
│ │ ├── HVSnapContinuous
│ │ │ ├── Main.cpp
│ │ │ ├── Main.ddp
│ │ │ ├── Main.dfm
│ │ │ ├── Main.h
│ │ │ ├── PHVSnapContinuous.bpr
│ │ │ ├── PHVSnapContinuous.cpp
│ │ │ └── PHVSnapContinuous.res
│ │ ├── HVSnapSingle
│ │ │ ├── Main.cpp
│ │ │ ├── Main.ddp
│ │ │ ├── Main.dfm
│ │ │ ├── Main.h
│ │ │ ├── PHVSnapSingle.bpr
│ │ │ ├── PHVSnapSingle.cpp
│ │ │ └── PHVSnapSingle.res
│ │ ├── HVStoreAvi
│ │ │ ├── Main.cpp
│ │ │ ├── Main.ddp
│ │ │ ├── Main.dfm
│ │ │ ├── Main.h
│ │ │ ├── PHVStoreAvi.bpr
│ │ │ ├── PHVStoreAvi.cpp
│ │ │ └── PHVStoreAvi.res
│ │ ├── HVStoreBmp
│ │ │ ├── PHVStoreBmp.bpr
│ │ │ ├── PHVStoreBmp.cpp
│ │ │ ├── PHVStoreBmp.res
│ │ │ ├── Unit1.cpp
│ │ │ ├── Unit1.ddp
│ │ │ ├── Unit1.dfm
│ │ │ └── Unit1.h
│ │ └── Readme.txt
│ ├── Delphi
│ │ ├── Common
│ │ │ └── HVApi.pas
│ │ └── Sample
│ │ ├── HVRealtime
│ │ │ ├── Main.dfm
│ │ │ ├── Main.pas
│ │ │ ├── PHVRealtime.dpr
│ │ │ └── PHVRealtime.res
│ │ ├── HVSnapContinuous
│ │ │ ├── Main.dfm
│ │ │ ├── Main.pas
│ │ │ ├── PHSnapContinuous.dpr
│ │ │ └── PHSnapContinuous.res
│ │ ├── HVSnapSingle
│ │ │ ├── Main.dfm
│ │ │ ├── Main.pas
│ │ │ ├── PHVSnapSingle.dpr
│ │ │ └── PHVSnapSingle.res
│ │ ├── HVStoreAvi
│ │ │ ├── Main.dfm
│ │ │ ├── Main.pas
│ │ │ ├── PHVStoreAvi.dpr
│ │ │ ├── PHVStoreAvi.res
│ │ │ └── VfW.pas
│ │ ├── HVStoreBmp
│ │ │ ├── Main.dfm
│ │ │ ├── Main.pas
│ │ │ ├── PHVStorebmp.dpr
│ │ │ └── PHVStorebmp.res
│ │ └── Readme.txt
│ ├── VB
│ │ ├── Common
│ │ │ ├── HVApi.bas
│ │ │ └── Win32API.bas
│ │ └── Sample
│ │ ├── HVSnapContinuous
│ │ │ ├── FrmHVSnapContinous.frm
│ │ │ └── PHVSnapContinous.vbp
│ │ ├── HVStoreBmp
│ │ │ ├── FrmMain.frm
│ │ │ └── PHVStorBmp.vbp
│ │ └── Readme.txt
│ ├── VC
│ │ ├── Bin
│ │ │ ├── HVRealtime.exe
│ │ │ ├── HVSnapContinuous.exe
│ │ │ ├── HVSnapContinuous.ilk
│ │ │ ├── HVSnapSingle.exe
│ │ │ ├── HVSnapSingle.ilk
│ │ │ ├── HVStoreAvi.exe
│ │ │ ├── HVStoreAvi.ilk
│ │ │ ├── HVStoreBmp.exe
│ │ │ ├── HVStoreBmp.ilk
│ │ │ ├── HVViewer.exe
│ │ │ └── HVViewer.ilk
│ │ ├── Inc
│ │ │ ├── HVDAILT.h
│ │ │ ├── HVDef.h
│ │ │ ├── HVUtil.h
│ │ │ └── Raw2Rgb.h
│ │ ├── Lib
│ │ │ ├── HVDAILT.lib
│ │ │ ├── HVUtil.lib
│ │ │ └── Raw2Rgb.lib
│ │ └── Sample
│ │ ├── HVRealtime
│ │ │ ├── CGSnapEx.ncb
│ │ │ ├── CGSnapEx.opt
│ │ │ ├── HVRealtime.aps
│ │ │ ├── HVRealtime.clw
│ │ │ ├── HVRealtime.cpp
│ │ │ ├── HVRealtime.dsp
│ │ │ ├── HVRealtime.dsw
│ │ │ ├── HVRealtime.h
│ │ │ ├── HVRealtime.ncb
│ │ │ ├── HVRealtime.opt
│ │ │ ├── HVRealtime.plg
│ │ │ ├── HVRealtime.rc
│ │ │ ├── HVRealtimeDOC.cpp
│ │ │ ├── HVRealtimeDOC.h
│ │ │ ├── HVRealtimeVIEW.cpp
│ │ │ ├── HVRealtimeVIEW.h
│ │ │ ├── HVSnapContinuous.ncb
│ │ │ ├── HVSnapContinuous.opt
│ │ │ ├── MainFrm.cpp
│ │ │ ├── MainFrm.h
│ │ │ ├── ReadMe.txt
│ │ │ ├── Release
│ │ │ │ ├── HVRealtime.obj
│ │ │ │ ├── HVRealtime.pch
│ │ │ │ ├── HVRealtime.res
│ │ │ │ ├── HVRealtimeDoc.obj
│ │ │ │ ├── HVRealtimeView.obj
│ │ │ │ ├── MainFrm.obj
│ │ │ │ ├── StdAfx.obj
│ │ │ │ └── vc60.idb
│ │ │ ├── Resource.h
│ │ │ ├── StdAfx.cpp
│ │ │ ├── StdAfx.h
│ │ │ └── res
│ │ │ ├── HVRealtime.ico
│ │ │ ├── HVRealtime.rc2
│ │ │ ├── HVRealtimeDOC.ico
│ │ │ └── Toolbar.bmp
│ │ ├── HVSnapContinuous
│ │ │ ├── CGSnapEx.ncb
│ │ │ ├── CGSnapEx.opt
│ │ │ ├── Debug
│ │ │ │ ├── HVSnapContinuous.bsc
│ │ │ │ ├── HVSnapContinuous.obj
│ │ │ │ ├── HVSnapContinuous.pch
│ │ │ │ ├── HVSnapContinuous.pdb
│ │ │ │ ├── HVSnapContinuous.res
│ │ │ │ ├── HVSnapContinuous.sbr
│ │ │ │ ├── HVSnapContinuousDoc.obj
│ │ │ │ ├── HVSnapContinuousDoc.sbr
│ │ │ │ ├── HVSnapContinuousView.obj
│ │ │ │ ├── HVSnapContinuousView.sbr
│ │ │ │ ├── MainFrm.obj
│ │ │ │ ├── MainFrm.sbr
│ │ │ │ ├── StdAfx.obj
│ │ │ │ ├── StdAfx.sbr
│ │ │ │ ├── vc60.idb
│ │ │ │ └── vc60.pdb
│ │ │ ├── HVSnapContinuous.aps
│ │ │ ├── HVSnapContinuous.clw
│ │ │ ├── HVSnapContinuous.cpp
│ │ │ ├── HVSnapContinuous.dsp
│ │ │ ├── HVSnapContinuous.dsw
│ │ │ ├── HVSnapContinuous.h
│ │ │ ├── HVSnapContinuous.ncb
│ │ │ ├── HVSnapContinuous.opt
│ │ │ ├── HVSnapContinuous.plg
│ │ │ ├── HVSnapContinuous.rc
│ │ │ ├── HVSnapContinuousDOC.cpp
│ │ │ ├── HVSnapContinuousDOC.h
│ │ │ ├── HVSnapContinuousVIEW.cpp
│ │ │ ├── HVSnapContinuousVIEW.h
│ │ │ ├── MainFrm.cpp
│ │ │ ├── MainFrm.h
│ │ │ ├── ReadMe.txt
│ │ │ ├── Resource.h
│ │ │ ├── StdAfx.cpp
│ │ │ ├── StdAfx.h
│ │ │ └── res
│ │ │ ├── HVSnapContinuous.ico
│ │ │ ├── HVSnapContinuous.rc2
│ │ │ ├── HVSnapContinuousDOC.ico
│ │ │ └── Toolbar.bmp
│ │ ├── HVSnapSingle
│ │ │ ├── CGSnapShot.ncb
│ │ │ ├── CGSnapShot.opt
│ │ │ ├── Debug
│ │ │ │ ├── HVSnapSingle.bsc
│ │ │ │ ├── HVSnapSingle.obj
│ │ │ │ ├── HVSnapSingle.pch
│ │ │ │ ├── HVSnapSingle.pdb
│ │ │ │ ├── HVSnapSingle.res
│ │ │ │ ├── HVSnapSingle.sbr
│ │ │ │ ├── HVSnapSingleDoc.obj
│ │ │ │ ├── HVSnapSingleDoc.sbr
│ │ │ │ ├── HVSnapSingleView.obj
│ │ │ │ ├── HVSnapSingleView.sbr
│ │ │ │ ├── MainFrm.obj
│ │ │ │ ├── MainFrm.sbr
│ │ │ │ ├── StdAfx.obj
│ │ │ │ ├── StdAfx.sbr
│ │ │ │ ├── vc60.idb
│ │ │ │ └── vc60.pdb
│ │ │ ├── HVSnapShot.ncb
│ │ │ ├── HVSnapShot.opt
│ │ │ ├── HVSnapSingle.aps
│ │ │ ├── HVSnapSingle.clw
│ │ │ ├── HVSnapSingle.cpp
│ │ │ ├── HVSnapSingle.dsp
│ │ │ ├── HVSnapSingle.dsw
│ │ │ ├── HVSnapSingle.h
│ │ │ ├── HVSnapSingle.ncb
│ │ │ ├── HVSnapSingle.opt
│ │ │ ├── HVSnapSingle.plg
│ │ │ ├── HVSnapSingle.rc
│ │ │ ├── HVSnapSingleDOC.cpp
│ │ │ ├── HVSnapSingleDOC.h
│ │ │ ├── HVSnapSingleVIEW.cpp
│ │ │ ├── HVSnapSingleVIEW.h
│ │ │ ├── MainFrm.cpp
│ │ │ ├── MainFrm.h
│ │ │ ├── ReadMe.txt
│ │ │ ├── Resource.h
│ │ │ ├── StdAfx.cpp
│ │ │ ├── StdAfx.h
│ │ │ └── res
│ │ │ ├── HVSnapSingle.ico
│ │ │ ├── HVSnapSingle.rc2
│ │ │ ├── HVSnapSingleDOC.ico
│ │ │ └── Toolbar.bmp
│ │ ├── HVStoreAvi
│ │ │ ├── CGStoreAvi.ncb
│ │ │ ├── CGStoreAvi.opt
│ │ │ ├── Debug
│ │ │ │ ├── HVStoreAvi.obj
│ │ │ │ ├── HVStoreAvi.pch
│ │ │ │ ├── HVStoreAvi.pdb
│ │ │ │ ├── HVStoreAvi.res
│ │ │ │ ├── HVStoreAviDoc.obj
│ │ │ │ ├── HVStoreAviView.obj
│ │ │ │ ├── MainFrm.obj
│ │ │ │ ├── StdAfx.obj
│ │ │ │ ├── vc60.idb
│ │ │ │ └── vc60.pdb
│ │ │ ├── HVStoreAvi.aps
│ │ │ ├── HVStoreAvi.clw
│ │ │ ├── HVStoreAvi.cpp
│ │ │ ├── HVStoreAvi.dsp
│ │ │ ├── HVStoreAvi.dsw
│ │ │ ├── HVStoreAvi.h
│ │ │ ├── HVStoreAvi.ncb
│ │ │ ├── HVStoreAvi.opt
│ │ │ ├── HVStoreAvi.plg
│ │ │ ├── HVStoreAvi.rc
│ │ │ ├── HVStoreAviDOC.cpp
│ │ │ ├── HVStoreAviDOC.h
│ │ │ ├── HVStoreAviVIEW.cpp
│ │ │ ├── HVStoreAviVIEW.h
│ │ │ ├── MainFrm.cpp
│ │ │ ├── MainFrm.h
│ │ │ ├── ReadMe.txt
│ │ │ ├── Resource.h
│ │ │ ├── StdAfx.cpp
│ │ │ ├── StdAfx.h
│ │ │ └── res
│ │ │ ├── HVStoreAvi.ico
│ │ │ ├── HVStoreAvi.rc2
│ │ │ ├── HVStoreAviDOC.ico
│ │ │ └── Toolbar.bmp
│ │ ├── HVStoreBmp
│ │ │ ├── CGStoreBmp.ncb
│ │ │ ├── CGStoreBmp.opt
│ │ │ ├── Debug
│ │ │ │ ├── HVStoreBmp.bsc
│ │ │ │ ├── HVStoreBmp.obj
│ │ │ │ ├── HVStoreBmp.pch
│ │ │ │ ├── HVStoreBmp.pdb
│ │ │ │ ├── HVStoreBmp.res
│ │ │ │ ├── HVStoreBmp.sbr
│ │ │ │ ├── HVStoreBmpDlg.obj
│ │ │ │ ├── HVStoreBmpDlg.sbr
│ │ │ │ ├── StdAfx.obj
│ │ │ │ ├── StdAfx.sbr
│ │ │ │ ├── vc60.idb
│ │ │ │ └── vc60.pdb
│ │ │ ├── HVStoreBmp.aps
│ │ │ ├── HVStoreBmp.bbs
│ │ │ ├── HVStoreBmp.clw
│ │ │ ├── HVStoreBmp.cpp
│ │ │ ├── HVStoreBmp.dsp
│ │ │ ├── HVStoreBmp.dsw
│ │ │ ├── HVStoreBmp.h
│ │ │ ├── HVStoreBmp.ncb
│ │ │ ├── HVStoreBmp.opt
│ │ │ ├── HVStoreBmp.plg
│ │ │ ├── HVStoreBmp.rc
│ │ │ ├── HVStoreBmpDLG.cpp
│ │ │ ├── HVStoreBmpDLG.h
│ │ │ ├── ReadMe.txt
│ │ │ ├── Resource.h
│ │ │ ├── StdAfx.cpp
│ │ │ ├── StdAfx.h
│ │ │ └── res
│ │ │ ├── HVStoreBmp.ico
│ │ │ └── HVStoreBmp.rc2
│ │ ├── HVViewer
│ │ │ ├── AdjustDlg.cpp
│ │ │ ├── AdjustDlg.h
│ │ │ ├── Debug
│ │ │ │ ├── AdjustDlg.obj
│ │ │ │ ├── AdjustDlg.sbr
│ │ │ │ ├── DlgGamma.obj
│ │ │ │ ├── DlgGamma.sbr
│ │ │ │ ├── HVViewer.bsc
│ │ │ │ ├── HVViewer.obj
│ │ │ │ ├── HVViewer.pch
│ │ │ │ ├── HVViewer.pdb
│ │ │ │ ├── HVViewer.res
│ │ │ │ ├── HVViewer.sbr
│ │ │ │ ├── HVViewerDoc.obj
│ │ │ │ ├── HVViewerDoc.sbr
│ │ │ │ ├── HVViewerView.obj
│ │ │ │ ├── HVViewerView.sbr
│ │ │ │ ├── MainFrm.obj
│ │ │ │ ├── MainFrm.sbr
│ │ │ │ ├── StdAfx.obj
│ │ │ │ ├── StdAfx.sbr
│ │ │ │ ├── WBDlg.obj
│ │ │ │ ├── WBDlg.sbr
│ │ │ │ ├── vc60.idb
│ │ │ │ └── vc60.pdb
│ │ │ ├── DlgGamma.cpp
│ │ │ ├── DlgGamma.h
│ │ │ ├── HVCorrect.ncb
│ │ │ ├── HVCorrect.opt
│ │ │ ├── HVPerf.ncb
│ │ │ ├── HVPerf.opt
│ │ │ ├── HVViewer.aps
│ │ │ ├── HVViewer.clw
│ │ │ ├── HVViewer.cpp
│ │ │ ├── HVViewer.dsp
│ │ │ ├── HVViewer.dsw
│ │ │ ├── HVViewer.h
│ │ │ ├── HVViewer.ncb
│ │ │ ├── HVViewer.opt
│ │ │ ├── HVViewer.plg
│ │ │ ├── HVViewer.rc
│ │ │ ├── HVViewerDOC.cpp
│ │ │ ├── HVViewerDOC.h
│ │ │ ├── HVViewerVIEW.cpp
│ │ │ ├── HVViewerVIEW.h
│ │ │ ├── MainFrm.cpp
│ │ │ ├── MainFrm.h
│ │ │ ├── ReadMe.txt
│ │ │ ├── StdAfx.cpp
│ │ │ ├── StdAfx.h
│ │ │ ├── WBDlg.cpp
│ │ │ ├── WBDlg.h
│ │ │ ├── res
│ │ │ │ ├── HVViewer.ico
│ │ │ │ ├── HVViewer.rc2
│ │ │ │ └── HVViewerDOC.ico
│ │ │ └── resource.h
│ │ └── Readme.txt
│ ├── unins000.dat
│ ├── unins000.exe
│ └── 数字摄像机软件开发说明书.pdf
└── 5t6t网_346385248SDK.rar
45 directories, 342 files
评论